Changeset 4582
- Timestamp:
- 02/10/07 19:20:50 (2 years ago)
- Files:
-
- libwired/trunk/configure (modified) (7 diffs)
- libwired/trunk/configure.in (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
libwired/trunk/configure
r4578 r4582 3027 3027 3028 3028 if test -n "$enable_pthreads"; then 3029 C FLAGS="$CFLAGS -DWI_PTHREADS"3029 CPPFLAGS="$CPPFLAGS -DWI_PTHREADS" 3030 3030 fi 3031 3031 … … 3039 3039 3040 3040 if test -n "$enable_termcap"; then 3041 C FLAGS="$CFLAGS -DWI_TERMCAP"3041 CPPFLAGS="$CPPFLAGS -DWI_TERMCAP" 3042 3042 fi 3043 3043 … … 3051 3051 3052 3052 if test -n "$enable_ssl"; then 3053 C FLAGS="$CFLAGS -DWI_SSL"3053 CPPFLAGS="$CPPFLAGS -DWI_SSL" 3054 3054 fi 3055 3055 … … 3063 3063 3064 3064 if test -n "$enable_iconv"; then 3065 C FLAGS="$CFLAGS -DWI_ICONV"3065 CPPFLAGS="$CPPFLAGS -DWI_ICONV" 3066 3066 fi 3067 3067 … … 3075 3075 3076 3076 if test -n "$enable_p7"; then 3077 C FLAGS="$CFLAGS -DWI_P7"3077 CPPFLAGS="$CPPFLAGS -DWI_P7" 3078 3078 fi 3079 3079 … … 4316 4316 4317 4317 if test "$_wi_ssl_paths_added" != yes ; then 4318 echo pulling extra paths4319 4318 if test -d /usr/local/ssl/include; then 4320 4319 CPPFLAGS="$CPPFLAGS -I/usr/local/ssl/include" … … 4590 4589 4591 4590 if test "$_wi_ssl_paths_added" != yes ; then 4592 echo pulling extra paths4593 4591 if test -d /usr/local/ssl/include; then 4594 4592 CPPFLAGS="$CPPFLAGS -I/usr/local/ssl/include" libwired/trunk/configure.in
r4578 r4582 56 56 57 57 if test -n "$enable_pthreads"; then 58 C FLAGS="$CFLAGS -DWI_PTHREADS"58 CPPFLAGS="$CPPFLAGS -DWI_PTHREADS" 59 59 fi 60 60 … … 64 64 65 65 if test -n "$enable_termcap"; then 66 C FLAGS="$CFLAGS -DWI_TERMCAP"66 CPPFLAGS="$CPPFLAGS -DWI_TERMCAP" 67 67 fi 68 68 … … 72 72 73 73 if test -n "$enable_ssl"; then 74 C FLAGS="$CFLAGS -DWI_SSL"74 CPPFLAGS="$CPPFLAGS -DWI_SSL" 75 75 fi 76 76 … … 80 80 81 81 if test -n "$enable_iconv"; then 82 C FLAGS="$CFLAGS -DWI_ICONV"82 CPPFLAGS="$CPPFLAGS -DWI_ICONV" 83 83 fi 84 84 … … 88 88 89 89 if test -n "$enable_p7"; then 90 C FLAGS="$CFLAGS -DWI_P7"90 CPPFLAGS="$CPPFLAGS -DWI_P7" 91 91 fi 92 92
