aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-05-30 18:34:05 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-05-30 18:34:05 +0000
commit0a1363d8ba7f0420e834c549bb583474ef3ddbf6 (patch)
tree8891967c527cf96f59e82725f444d5d82b28a5cf
parent785e0eb9491d38d6cf47ba60d0f59a0d87b1201c (diff)
include pdp_ieee1394 on __APPLE__
svn path=/trunk/externals/pidip/; revision=7722
-rw-r--r--system/pidip.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/system/pidip.c b/system/pidip.c
index 44150ec..9ad2cc4 100644
--- a/system/pidip.c
+++ b/system/pidip.c
@@ -80,6 +80,10 @@ extern "C"
void pdp_fdiff_setup(void);
void pdp_hue_setup(void);
+#ifdef __APPLE__
+ void pdp_ieee1394_setup(void);
+#endif
+
#ifdef HAVE_IMAGE_MAGICK
void pdp_capture_setup(void);
#endif
@@ -170,6 +174,10 @@ void pidip_setup(void){
pdp_fdiff_setup();
pdp_hue_setup();
+#ifdef __APPLE__
+ pdp_ieee1394_setup();
+#endif
+
#ifdef HAVE_IMAGE_MAGICK
pdp_capture_setup();
#endif