Index: trunk/magic/remove/src/Makefile.am
===================================================================
--- trunk/magic/remove/src/Makefile.am	(revision 32687)
+++ trunk/magic/remove/src/Makefile.am	(revision 34089)
@@ -24,6 +24,6 @@
 STREAKSREMOVE_CFLAGS=-DSTREAKS_COMPRESS_OUTPUT=1
 
-STREAKSCFLAGS = $(STREAKSREMOVE_CFLAGS) $(PSMODULE_CFLAGS) $(PSLIB_CFLAGS)
-STREAKSLDFLAGS = $(STREAKSREMOVE_LIBS) $(PSMODULE_LIBS) $(PSLIB_LIBS)
+STREAKSCFLAGS = $(STREAKSREMOVE_CFLAGS) $(PSMODULE_CFLAGS) $(PSLIB_CFLAGS) ${NEBCLIENT_CFLAGS}
+STREAKSLDFLAGS = $(STREAKSREMOVE_LIBS) $(PSMODULE_LIBS) $(PSLIB_LIBS) ${NEBCLIENT_LIBS}
 
 streaksremove_CFLAGS = $(STREAKSCFLAGS)
Index: trunk/magic/remove/src/streakscompare.c
===================================================================
--- trunk/magic/remove/src/streakscompare.c	(revision 32687)
+++ trunk/magic/remove/src/streakscompare.c	(revision 34089)
@@ -165,4 +165,6 @@
     }
 
+    if (nebulousImage) { /* do something? */ }
+
     if (argc != 1) {
         psString unexpectedArguments = NULL;
Index: trunk/magic/remove/src/streaksio.c
===================================================================
--- trunk/magic/remove/src/streaksio.c	(revision 32687)
+++ trunk/magic/remove/src/streaksio.c	(revision 34089)
@@ -659,5 +659,5 @@
 
         // Ensure input is of the expected type
-        psDataType expected = isMask ? PS_TYPE_IMAGE_MASK : PS_TYPE_F32; // Expected type for image
+        psElemType expected = isMask ? PS_TYPE_IMAGE_MASK : PS_TYPE_F32; // Expected type for image
         for (int i = 0; i < in->imagecube->n; i++) {
             psImage *image = in->imagecube->data[i]; // Image of interest
Index: trunk/magic/remove/src/streaksrelease.c
===================================================================
--- trunk/magic/remove/src/streaksrelease.c	(revision 32687)
+++ trunk/magic/remove/src/streaksrelease.c	(revision 34089)
@@ -288,13 +288,13 @@
     } else {
         // we have an image cube
-        double initValue;
+        // double initValue;
         if (exciseImageCube) {
             // copy the entire input image to the recovery image
             writeImageCube(sf->recImage, sf->inImage->imagecube, extname, sf->extnum);
-            initValue = NAN;
+            // initValue = NAN;
         } else {
             // otherwise write it to the output
             writeImageCube(sf->outImage, sf->inImage->imagecube, extname, sf->extnum);
-            initValue = 0;
+            // initValue = 0;
         }
 
