diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2002-01-25 02:14:53 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2002-01-25 02:14:53 +0000 |
commit | 11f1fffc230a0088d745268d8ad7886a8d65bec2 (patch) | |
tree | b684df1031fc4d825263cab2e5def3eea63cbdcb | |
parent | 396645a11963e384f3905148722e1559edaaf9e9 (diff) | |
download | libgphoto2-11f1fffc230a0088d745268d8ad7886a8d65bec2.tar.gz |
* libgphoto2/pattrec.c
* libgphoto2/jpeg.c: Added include of config.h
git-svn-id: https://svn.code.sf.net/p/gphoto/code/trunk/libgphoto2@4005 67ed7778-7388-44ab-90cf-0a291f65f57c
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | libgphoto2/jpeg.c | 3 | ||||
-rw-r--r-- | libgphoto2/pattrec.c | 4 |
3 files changed, 9 insertions, 3 deletions
@@ -1,3 +1,8 @@ +2002-01-24 Dan Fandrich <dan@coneharvesters.com> + + * libgphoto2/pattrec.c + * libgphoto2/jpeg.c: Added include of config.h + 2002-01-21 Lutz Müller <lutz@users.sourceforge.net> * frontends/command-line: Fix image numbering when --recurse. diff --git a/libgphoto2/jpeg.c b/libgphoto2/jpeg.c index c3475f7cd..f9c2307ea 100644 --- a/libgphoto2/jpeg.c +++ b/libgphoto2/jpeg.c @@ -17,11 +17,12 @@ * Boston, MA 02111-1307, USA. */ +#include <config.h> +#include "jpeg.h" #include <stdio.h> #include <stdlib.h> #include <string.h> #include <gphoto2-library.h> -#include "jpeg.h" /* call example:nullpictureabort(picture,"Picture",0); */ #define nullpointerabort(pointer,name,val) \ diff --git a/libgphoto2/pattrec.c b/libgphoto2/pattrec.c index 0ef936d88..81bc769a3 100644 --- a/libgphoto2/pattrec.c +++ b/libgphoto2/pattrec.c @@ -19,13 +19,13 @@ * Boston, MA 02111-1307, USA. */ +#include <config.h> +#include "pattrec.h" #include <stdio.h> #include <stdlib.h> #include <math.h> #include <gphoto2-result.h> -#include "pattrec.h" - #define RED 0 #define GREEN 1 #define BLUE 2 |