-
Notifications
You must be signed in to change notification settings - Fork 343
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build: configure: Use AC_SEARCH_LIBS for basic libraries.
* Get rid of the check for getopt_long, which is no longer used anywhere. * Use AC_SEARCH_LIBS for finding libdl, but because that macro always adds the result of the test to $LIBS, we have to use a trick: save $LIBS, search for libdl, set $DL_LIBS to the result, and then restore $LIBS. * Change LIBADD_DL to DL_LIBS for future consistency. * Get rid of the "Where is dlopen?" block. I think AC_SEARCH_LIBS makes this unnecessary. * libcrmcommon links against socket and is used by everything, so we can just simply call AC_SEARCH_LIBS for it. Related T876
- Loading branch information
Showing
5 changed files
with
14 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters