diff options
author | Yves Starreveld <ystarrev@uwo.ca> | 2001-10-04 13:32:53 (GMT) |
---|---|---|
committer | Yves Starreveld <ystarrev@uwo.ca> | 2001-10-04 13:32:53 (GMT) |
commit | c1fa8454a1269fc35f5df0826b455d7b608182fb (patch) | |
tree | 41876514426edcb7df3675329b4b1e89736c516f /Templates | |
parent | 8f652aad2176055ff7f76e76fcb14389bafcc543 (diff) | |
download | CMake-c1fa8454a1269fc35f5df0826b455d7b608182fb.zip CMake-c1fa8454a1269fc35f5df0826b455d7b608182fb.tar.gz CMake-c1fa8454a1269fc35f5df0826b455d7b608182fb.tar.bz2 |
ERR: remove undefined warning for compatibility with new 10.1 linker
Diffstat (limited to 'Templates')
-rwxr-xr-x | Templates/configure | 4 | ||||
-rw-r--r-- | Templates/configure.in | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Templates/configure b/Templates/configure index 7bea923..480d15b 100755 --- a/Templates/configure +++ b/Templates/configure @@ -2289,9 +2289,9 @@ fi CMAKE_SHLIB_SUFFIX=".dylib" CMAKE_MODULE_SUFFIX=".so" CMAKE_DL_LIBS="" - CMAKE_SHLIB_BUILD_FLAGS="-dynamiclib -undefined warning" #undefined warning must go away once dylibs link in + CMAKE_SHLIB_BUILD_FLAGS="-dynamiclib" CMAKE_SHLIB_LINK_FLAGS="" - CMAKE_MODULE_BUILD_FLAGS="-bundle -undefined warning" #undefined warning must go away once dylibs link in + CMAKE_MODULE_BUILD_FLAGS="-bundle" CMAKE_MODULE_LINK_FLAGS="" CMAKE_SHLIB_RUNTIME_FLAG="" CMAKE_SHLIB_RUNTIME_SEP=":" diff --git a/Templates/configure.in b/Templates/configure.in index fd90d8d..7955b2c 100644 --- a/Templates/configure.in +++ b/Templates/configure.in @@ -135,9 +135,9 @@ case $system in CMAKE_SHLIB_SUFFIX=".dylib" CMAKE_MODULE_SUFFIX=".so" CMAKE_DL_LIBS="" - CMAKE_SHLIB_BUILD_FLAGS="-dynamiclib -undefined warning" #undefined warning must go away once dylibs link in + CMAKE_SHLIB_BUILD_FLAGS="-dynamiclib" CMAKE_SHLIB_LINK_FLAGS="" - CMAKE_MODULE_BUILD_FLAGS="-bundle -undefined warning" #undefined warning must go away once dylibs link in + CMAKE_MODULE_BUILD_FLAGS="-bundle" CMAKE_MODULE_LINK_FLAGS="" CMAKE_SHLIB_RUNTIME_FLAG="" CMAKE_SHLIB_RUNTIME_SEP=":" |