git.videolan.org
/
vlc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
3c587bc
)
configure.ac.in: fixed libdvbpsi detection for people who don't have
author
Eric Petit
<titer@videolan.org>
Mon, 5 May 2003 21:35:37 +0000
(21:35 +0000)
committer
Eric Petit
<titer@videolan.org>
Mon, 5 May 2003 21:35:37 +0000
(21:35 +0000)
stdint.h but inttypes.h
configure.ac.in
patch
|
blob
|
history
diff --git
a/configure.ac.in
b/configure.ac.in
index
dc0638f
..
bc3001d
100644
(file)
--- a/
configure.ac.in
+++ b/
configure.ac.in
@@
-1263,7
+1263,11
@@
then
PLUGINS="${PLUGINS} mux_ts_dvbpsi"
LDFLAGS_mux_ts_dvbpsi="${LDFLAGS_mux_ts_dvbpsi} -ldvbpsi" ],
[ AC_MSG_WARN([cannot find libdvbpsi headers]) ],
- [#include <stdint.h>
+ [#if defined( HAVE_STDINT_H )
+# include <stdint.h>
+#elif defined( HAVE_INTTYPES_H )
+# include <inttypes.h>
+#endif
#include <dvbpsi/dvbpsi.h>
#include <dvbpsi/descriptor.h>
#include <dvbpsi/pat.h>