Changeset 1407
- Timestamp:
- 10/01/06 12:22:31 (2 years ago)
- Files:
-
- 1 modified
-
plugins/opie-sync/configure.ac (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
plugins/opie-sync/configure.ac
r1403 r1407 11 11 PKG_CHECK_MODULES(PACKAGE, [$pkg_modules]) 12 12 13 CFLAGS="-Wno-pointer-sign" 13 #save old cflags 14 OLD_CFLAGS=$CFLAGS 15 CFLAGS="$OLD_CFLAGS -Wno-pointer-sign" 14 16 AC_MSG_CHECKING(if gcc supports $CFLAGS compiler option) 15 17 AC_TRY_COMPILE( [], [ int main() { return 0; } ], … … 23 25 AC_SUBST(PACKAGE_CFLAGS) 24 26 AC_SUBST(PACKAGE_LIBS) 25 CFLAGS="" 27 #restore old cflags 28 CFLAGS=$OLD_CFLAGS 26 29 27 30 AC_CHECK_LIB(curl,curl_global_init,,AC_MSG_ERROR(You must have libcurl installed.))
