]> sigrok.org Git - libsigrok.git/commitdiff
configure: add -Wmissing-prototypes compiler option
authorAurelien Jacobs <redacted>
Tue, 14 Jan 2014 22:30:02 +0000 (23:30 +0100)
committerAurelien Jacobs <redacted>
Tue, 14 Jan 2014 22:39:23 +0000 (23:39 +0100)
This should avoid introduction SR_PRIV functions when static would be enough.

configure.ac

index c1ca46fe67ed7621ca61aa8f8d95ec1373bc64d6..7e18ed96f39ec443b34b02ba4b70a731cc13a8b9 100644 (file)
@@ -44,7 +44,7 @@ AH_BOTTOM([#endif /* SR_CONFIG_H */])
 
 # Enable more compiler warnings via -Wall and -Wextra. Add -fvisibility=hidden
 # and enforce use of SR_API to explicitly mark all public API functions.
-CFLAGS="$CFLAGS -Wall -Wextra -fvisibility=hidden"
+CFLAGS="$CFLAGS -Wall -Wextra -Wmissing-prototypes -fvisibility=hidden"
 
 # Checks for programs.
 AC_PROG_CC