[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[netCDF #FTQ-916604]: can't build libraries on Mac OS X 10.6 (snow leopard)



Hi Sonya,

Great news! I'm glad it worked out. I suggested gfortran as I've personally had 
better luck with it on other projects (and it's part of gcc), but it was a shot 
in the dark and worth a try if you were not too attached to g95.

Cheers!

Sean

> Hi Sean,
> 
> Sorry I had to leave early Friday, and just got back to this this morning.
> 
> And voila, it worked!  I'm not sure why typing it all on one line didn't work 
> on Friday, but did work today.  Maybe I forgot to redo the distclean on 
> Friday, not sure.  Anyway, I was able to do the configure, make, make check, 
> and install with no problems (at least I think).  The software that uses the 
> netcdf library is now giving me a segmentation fault, but it's likely related 
> to something else, and I'll check with those folks next.
> 
> In answer to your last email, the only reason I picked g05 over gfortran was 
> that I found it first.  When things weren't working, I did try the gfortran 
> option, but was having problems there too.  Is one version preferable over 
> another?
> 
> Thanks again for your help!
> Sonia
> --------------------------------------------
> Sonia Lasher-Trapp
> Associate Professor
> Dept. of Earth & Atmos. Sciences
> Purdue University
> 550 Stadium Mall Drive
> West Lafayette, IN 47907
> ph:  765-496-2866
> fax:  765-496-1210
> address@hidden
> -----------------------------------------------
> "A professor is someone who talks in someone else's sleep."
> 
> 
> 
> 
> 
> 
> 
> 
> 
> On Jun 10, 2011, at 4:36 PM, Unidata netCDF Support wrote:
> 
> > Hi Sonia,
> >
> >    Sorry to blast you with emails, but...if this does not work, then I have 
> > another question for you. Is there any particular reason you are using g95 
> > over, say, gfortran as your compiler fortran compiler?
> >
> > Cheers,
> >
> > Sean
> >
> >> Hi Sonia,
> >>
> >>> Hi Sean,
> >>>
> >>> Sorry to be dense, but is that first part a command?  If I type it in as 
> >>> you list below, it says command not found.
> >>
> >> No worries - you have been far from dense. That is the first part of the 
> >> command. You should be able to go to the top of your build directory, 
> >> where the configure script lives, and run:
> >>
> >> lt_cv_ld_force_load=no ./configure --disable-netcdf-4
> >>
> >> I would think setting the variable before running the command would work:
> >>
> >> setenv lt_cv_ld_force_load=no
> >> ./configure --disable-netcdf-4
> >>
> >> but I am not sure, as I've only tried the one-liner. We'll get this worked 
> >> out!
> >>
> >> Sean
> >>
> >>>
> >>> So then I thought it was maybe an environmental variable I should set?  
> >>> So I did that, and ran the configure command,
> >>> and then the make command.
> >>>
> >>> I think I still get the same error with the make command.
> >>>
> >>> Did I do something wrong?
> >>>
> >>> Sonia
> >>>
> >>>
> >>> --------------------------------------------
> >>> Sonia Lasher-Trapp
> >>> Associate Professor
> >>> Dept. of Earth & Atmos. Sciences
> >>> Purdue University
> >>> 550 Stadium Mall Drive
> >>> West Lafayette, IN 47907
> >>> ph:  765-496-2866
> >>> fax:  765-496-1210
> >>> address@hidden
> >>> -----------------------------------------------
> >>> "A professor is someone who talks in someone else's sleep."
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>> On Jun 10, 2011, at 3:12 PM, Unidata netCDF Support wrote:
> >>>
> >>>> Hi Sonia,
> >>>>
> >>>> I think we've found a solution. Because of some differences between 
> >>>> `libtool` and `ld` on Mac OS X, you need to set something before running 
> >>>> ./configure. Go ahead and do a `make distclean` and try the following:
> >>>>
> >>>> lt_cv_ld_force_load=no ./configure --disable-netcdf-4
> >>>>
> >>>> Let me know if that fixes things.
> >>>>
> >>>> Sean
> >>>>
> >>>>> Hi Sean,
> >>>>>
> >>>>> When I do an 'ls -la', I still can't see any directory named .libs.  So 
> >>>>> when I execute your commands listed below, it just says:
> >>>>>
> >>>>> [1397-LAPM-017:local/raf/netcdf-4.1.2] slasher% otool -hV 
> >>>>> /usr/local/raf/netcdf-4.1.2/.libs/liboc.a
> >>>>> otool: can't open file: /usr/local/raf/netcdf-4.1.2/.libs/liboc.a (No 
> >>>>> such file or directory)
> >>>>>
> >>>>> For each time I try it.
> >>>>>
> >>>>> Sonia
> >>>>> --------------------------------------------
> >>>>> Sonia Lasher-Trapp
> >>>>> Associate Professor
> >>>>> Dept. of Earth & Atmos. Sciences
> >>>>> Purdue University
> >>>>> 550 Stadium Mall Drive
> >>>>> West Lafayette, IN 47907
> >>>>> ph:  765-496-2866
> >>>>> fax:  765-496-1210
> >>>>> address@hidden
> >>>>> -----------------------------------------------
> >>>>> "A professor is someone who talks in someone else's sleep."
> >>>>>
> >>>>>
> >>>>>
> >>>>>
> >>>>>
> >>>>>
> >>>>>
> >>>>>
> >>>>>
> >>>>> On Jun 10, 2011, at 2:50 PM, Unidata netCDF Support wrote:
> >>>>>
> >>>>>> Sonia,
> >>>>>>
> >>>>>> My bad - yes, I mean insert the directory name without the < >. The 
> >>>>>> reason the libs directory isn't showing up is because I forgot to add 
> >>>>>> the '.', as it is a hidden file. So, it should be
> >>>>>>
> >>>>>> otool -hV <build dir>/.libs/liboc.a
> >>>>>> otool -hV <build dir>/.libs/liboc_la-ocdrno.o
> >>>>>> otool -hV <build dir>/.libs/liboc.a(liboc_la-ocdrno.o)
> >>>>>>
> >>>>>> Also, you may need to add quotes to the last one to make sure you 
> >>>>>> shell handels it correctly:
> >>>>>>
> >>>>>> otool -hV "<build dir>/.libs/liboc.a(liboc_la-ocdrno.o)"
> >>>>>>
> >>>>>> Sorry about that,
> >>>>>>
> >>>>>> Sean
> >>>>>>
> >>>>>>> Sean,
> >>>>>>>
> >>>>>>> Dumb question:  when you say <build dir> below, do you mean insert 
> >>>>>>> the directory name with or without the < >?
> >>>>>>> In my build directory, there is no subdirectory libs, so I'm a little 
> >>>>>>> confused...
> >>>>>>>
> >>>>>>> Sonia
> >>>>>>> --------------------------------------------
> >>>>>>> Sonia Lasher-Trapp
> >>>>>>> Associate Professor
> >>>>>>> Dept. of Earth & Atmos. Sciences
> >>>>>>> Purdue University
> >>>>>>> 550 Stadium Mall Drive
> >>>>>>> West Lafayette, IN 47907
> >>>>>>> ph:  765-496-2866
> >>>>>>> fax:  765-496-1210
> >>>>>>> address@hidden
> >>>>>>> -----------------------------------------------
> >>>>>>> "A professor is someone who talks in someone else's sleep."
> >>>>>>>
> >>>>>>>
> >>>>>>>
> >>>>>>>
> >>>>>>>
> >>>>>>>
> >>>>>>>
> >>>>>>>
> >>>>>>>
> >>>>>>> On Jun 10, 2011, at 2:28 PM, Unidata netCDF Support wrote:
> >>>>>>>
> >>>>>>>> Sonia,
> >>>>>>>>
> >>>>>>>> You can try the binaries and see if that works (definitely won't 
> >>>>>>>> hurt anything). Could you do me a favor, though, even if you decide 
> >>>>>>>> to go that route? Can you tell me the output of the following 
> >>>>>>>> commands:
> >>>>>>>>
> >>>>>>>> otool -hV <build dir>/libs/liboc.a
> >>>>>>>> otool -hV <build dir>/libs/liboc_la-ocdrno.o
> >>>>>>>> otool -hV <build dir>/libs/liboc.a(liboc_la-ocdrno.o)
> >>>>>>>>
> >>>>>>>> (I don't have my Mac with me, or I would test which one would work 
> >>>>>>>> best [I'm guessing the third one] - sorry about that).
> >>>>>>>>
> >>>>>>>> Sean
> >>>>>>>>
> >>>>>>>>> Sean,
> >>>>>>>>>
> >>>>>>>>> I just now found the ftp page with binaries, and found the 
> >>>>>>>>> darwin_10.7-i386 one.  Should I clean everything off, and try to 
> >>>>>>>>> install that way instead?
> >>>>>>>>>
> >>>>>>>>> It's strange to me that I've been following any links for binaries 
> >>>>>>>>> for a couple of days now, and never found any recent Mac binaries 
> >>>>>>>>> until I stumbled upon this link!
> >>>>>>>>>
> >>>>>>>>> Anyway, would this be an easier way to proceed?
> >>>>>>>>>
> >>>>>>>>> Sonia
> >>>>>>>>> --------------------------------------------
> >>>>>>>>> Sonia Lasher-Trapp
> >>>>>>>>> Associate Professor
> >>>>>>>>> Dept. of Earth & Atmos. Sciences
> >>>>>>>>> Purdue University
> >>>>>>>>> 550 Stadium Mall Drive
> >>>>>>>>> West Lafayette, IN 47907
> >>>>>>>>> ph:  765-496-2866
> >>>>>>>>> fax:  765-496-1210
> >>>>>>>>> address@hidden
> >>>>>>>>> -----------------------------------------------
> >>>>>>>>> "A professor is someone who talks in someone else's sleep."
> >>>>>>>>>
> >>>>>>>>>
> >>>>>>>>>
> >>>>>>>>>
> >>>>>>>>>
> >>>>>>>>>
> >>>>>>>>>
> >>>>>>>>>
> >>>>>>>>>
> >>>>>>>>> On Jun 10, 2011, at 11:46 AM, Unidata netCDF Support wrote:
> >>>>>>>>>
> >>>>>>>>>> Greetings Sonia,
> >>>>>>>>>>
> >>>>>>>>>>
> >>>>>>>>>> Please try the following. Go to your netCDf build directory and 
> >>>>>>>>>> execute `make distclean`. Then, set the environmental variable 
> >>>>>>>>>> CPPFLAGS to -Df2cFortran:
> >>>>>>>>>>
> >>>>>>>>>> export CPPFLAGS='-Df2cFortran' (for the bash shell...change 
> >>>>>>>>>> `export` as needed if you shell is different).
> >>>>>>>>>>
> >>>>>>>>>> Then, try configure and make again and let me know what happens.
> >>>>>>>>>>
> >>>>>>>>>> Thanks!
> >>>>>>>>>>
> >>>>>>>>>> Sean
> >>>>>>>>>>
> >>>>>>>>>>> Hello,
> >>>>>>>>>>>
> >>>>>>>>>>> I've tried all yesterday afternoon, last night, and this morning 
> >>>>>>>>>>> to fix
> >>>>>>>>>>> this problem myself, and have combed through your support pages, 
> >>>>>>>>>>> but
> >>>>>>>>>>> can't seem to get past the configure stage of installing netcdf 
> >>>>>>>>>>> on my
> >>>>>>>>>>> Mac.  I've attached the config.log file at the bottom of this 
> >>>>>>>>>>> email for
> >>>>>>>>>>> your reference.  I ran the config step with the option 
> >>>>>>>>>>> --disable-netcdf-4.
> >>>>>>>>>>>
> >>>>>>>>>>> When I do the "make" command, I get the following error (and I 
> >>>>>>>>>>> can't
> >>>>>>>>>>> tell where to go from here):
> >>>>>>>>>>>
> >>>>>>>>>>>> [1397-LAPM-017:local/raf/netcdf-4.1.2] slasher% sudo make
> >>>>>>>>>>>> make  all-recursive
> >>>>>>>>>>>> Making all in include
> >>>>>>>>>>>> make[2]: Nothing to be done for `all'.
> >>>>>>>>>>>> Making all in libdispatch
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I../include     -g -O2 -MT 
> >>>>>>>>>>>> libdispatch_la-parallel.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-parallel.Tpo -c -o 
> >>>>>>>>>>>> libdispatch_la-parallel.lo `test -f 'parallel.c' || echo 
> >>>>>>>>>>>> './'`parallel.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran 
> >>>>>>>>>>>> -I../include -g -O2 -MT libdispatch_la-parallel.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-parallel.Tpo -c parallel.c  -fno-common 
> >>>>>>>>>>>> -DPIC -o .libs/libdispatch_la-parallel.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran 
> >>>>>>>>>>>> -I../include -g -O2 -MT libdispatch_la-parallel.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-parallel.Tpo -c parallel.c -o 
> >>>>>>>>>>>> libdispatch_la-parallel.o >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/libdispatch_la-parallel.Tpo 
> >>>>>>>>>>>> .deps/libdispatch_la-parallel.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I../include     -g -O2 -MT 
> >>>>>>>>>>>> libdispatch_la-copy.lo -MD -MP -MF .deps/libdispatch_la-copy.Tpo 
> >>>>>>>>>>>> -c -o libdispatch_la-copy.lo `test -f 'copy.c' || echo 
> >>>>>>>>>>>> './'`copy.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran 
> >>>>>>>>>>>> -I../include -g -O2 -MT libdispatch_la-copy.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-copy.Tpo -c copy.c  -fno-common -DPIC -o 
> >>>>>>>>>>>> .libs/libdispatch_la-copy.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran 
> >>>>>>>>>>>> -I../include -g -O2 -MT libdispatch_la-copy.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-copy.Tpo -c copy.c -o libdispatch_la-copy.o 
> >>>>>>>>>>>> >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/libdispatch_la-copy.Tpo .deps/libdispatch_la-copy.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I../include     -g -O2 -MT 
> >>>>>>>>>>>> libdispatch_la-file.lo -MD -MP -MF .deps/libdispatch_la-file.Tpo 
> >>>>>>>>>>>> -c -o libdispatch_la-file.lo `test -f 'file.c' || echo 
> >>>>>>>>>>>> './'`file.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran 
> >>>>>>>>>>>> -I../include -g -O2 -MT libdispatch_la-file.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-file.Tpo -c file.c  -fno-common -DPIC -o 
> >>>>>>>>>>>> .libs/libdispatch_la-file.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran 
> >>>>>>>>>>>> -I../include -g -O2 -MT libdispatch_la-file.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-file.Tpo -c file.c -o libdispatch_la-file.o 
> >>>>>>>>>>>> >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/libdispatch_la-file.Tpo .deps/libdispatch_la-file.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I../include     -g -O2 -MT 
> >>>>>>>>>>>> libdispatch_la-dim.lo -MD -MP -MF .deps/libdispatch_la-dim.Tpo 
> >>>>>>>>>>>> -c -o libdispatch_la-dim.lo `test -f 'dim.c' || echo './'`dim.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran 
> >>>>>>>>>>>> -I../include -g -O2 -MT libdispatch_la-dim.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-dim.Tpo -c dim.c  -fno-common -DPIC -o 
> >>>>>>>>>>>> .libs/libdispatch_la-dim.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran 
> >>>>>>>>>>>> -I../include -g -O2 -MT libdispatch_la-dim.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-dim.Tpo -c dim.c -o libdispatch_la-dim.o 
> >>>>>>>>>>>> >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/libdispatch_la-dim.Tpo .deps/libdispatch_la-dim.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I../include     -g -O2 -MT 
> >>>>>>>>>>>> libdispatch_la-att.lo -MD -MP -MF .deps/libdispatch_la-att.Tpo 
> >>>>>>>>>>>> -c -o libdispatch_la-att.lo `test -f 'att.c' || echo './'`att.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran 
> >>>>>>>>>>>> -I../include -g -O2 -MT libdispatch_la-att.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-att.Tpo -c att.c  -fno-common -DPIC -o 
> >>>>>>>>>>>> .libs/libdispatch_la-att.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran 
> >>>>>>>>>>>> -I../include -g -O2 -MT libdispatch_la-att.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-att.Tpo -c att.c -o libdispatch_la-att.o 
> >>>>>>>>>>>> >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/libdispatch_la-att.Tpo .deps/libdispatch_la-att.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I../include     -g -O2 -MT 
> >>>>>>>>>>>> libdispatch_la-error.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-error.Tpo -c -o libdispatch_la-error.lo 
> >>>>>>>>>>>> `test -f 'error.c' || echo './'`error.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran 
> >>>>>>>>>>>> -I../include -g -O2 -MT libdispatch_la-error.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-error.Tpo -c error.c  -fno-common -DPIC -o 
> >>>>>>>>>>>> .libs/libdispatch_la-error.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran 
> >>>>>>>>>>>> -I../include -g -O2 -MT libdispatch_la-error.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-error.Tpo -c error.c -o 
> >>>>>>>>>>>> libdispatch_la-error.o >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/libdispatch_la-error.Tpo 
> >>>>>>>>>>>> .deps/libdispatch_la-error.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I../include     -g -O2 -MT 
> >>>>>>>>>>>> libdispatch_la-var.lo -MD -MP -MF .deps/libdispatch_la-var.Tpo 
> >>>>>>>>>>>> -c -o libdispatch_la-var.lo `test -f 'var.c' || echo './'`var.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran 
> >>>>>>>>>>>> -I../include -g -O2 -MT libdispatch_la-var.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-var.Tpo -c var.c  -fno-common -DPIC -o 
> >>>>>>>>>>>> .libs/libdispatch_la-var.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran 
> >>>>>>>>>>>> -I../include -g -O2 -MT libdispatch_la-var.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-var.Tpo -c var.c -o libdispatch_la-var.o 
> >>>>>>>>>>>> >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/libdispatch_la-var.Tpo .deps/libdispatch_la-var.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I../include     -g -O2 -MT 
> >>>>>>>>>>>> libdispatch_la-dispatch.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-dispatch.Tpo -c -o 
> >>>>>>>>>>>> libdispatch_la-dispatch.lo `test -f 'dispatch.c' || echo 
> >>>>>>>>>>>> './'`dispatch.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran 
> >>>>>>>>>>>> -I../include -g -O2 -MT libdispatch_la-dispatch.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-dispatch.Tpo -c dispatch.c  -fno-common 
> >>>>>>>>>>>> -DPIC -o .libs/libdispatch_la-dispatch.o
> >>>>>>>>>>>> dispatch.c: In function 'NC_testurl':
> >>>>>>>>>>>> dispatch.c:58: warning: assignment discards qualifiers from 
> >>>>>>>>>>>> pointer target type
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran 
> >>>>>>>>>>>> -I../include -g -O2 -MT libdispatch_la-dispatch.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-dispatch.Tpo -c dispatch.c -o 
> >>>>>>>>>>>> libdispatch_la-dispatch.o >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/libdispatch_la-dispatch.Tpo 
> >>>>>>>>>>>> .deps/libdispatch_la-dispatch.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I../include     -g -O2 -MT 
> >>>>>>>>>>>> libdispatch_la-nc_url.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-nc_url.Tpo -c -o libdispatch_la-nc_url.lo 
> >>>>>>>>>>>> `test -f 'nc_url.c' || echo './'`nc_url.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran 
> >>>>>>>>>>>> -I../include -g -O2 -MT libdispatch_la-nc_url.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-nc_url.Tpo -c nc_url.c  -fno-common -DPIC 
> >>>>>>>>>>>> -o .libs/libdispatch_la-nc_url.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran 
> >>>>>>>>>>>> -I../include -g -O2 -MT libdispatch_la-nc_url.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-nc_url.Tpo -c nc_url.c -o 
> >>>>>>>>>>>> libdispatch_la-nc_url.o >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/libdispatch_la-nc_url.Tpo 
> >>>>>>>>>>>> .deps/libdispatch_la-nc_url.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I../include     -g -O2 -MT 
> >>>>>>>>>>>> libdispatch_la-nclist.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-nclist.Tpo -c -o libdispatch_la-nclist.lo 
> >>>>>>>>>>>> `test -f 'nclist.c' || echo './'`nclist.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran 
> >>>>>>>>>>>> -I../include -g -O2 -MT libdispatch_la-nclist.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-nclist.Tpo -c nclist.c  -fno-common -DPIC 
> >>>>>>>>>>>> -o .libs/libdispatch_la-nclist.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran 
> >>>>>>>>>>>> -I../include -g -O2 -MT libdispatch_la-nclist.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-nclist.Tpo -c nclist.c -o 
> >>>>>>>>>>>> libdispatch_la-nclist.o >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/libdispatch_la-nclist.Tpo 
> >>>>>>>>>>>> .deps/libdispatch_la-nclist.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I../include     -g -O2 -MT 
> >>>>>>>>>>>> libdispatch_la-ncbytes.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-ncbytes.Tpo -c -o libdispatch_la-ncbytes.lo 
> >>>>>>>>>>>> `test -f 'ncbytes.c' || echo './'`ncbytes.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran 
> >>>>>>>>>>>> -I../include -g -O2 -MT libdispatch_la-ncbytes.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-ncbytes.Tpo -c ncbytes.c  -fno-common -DPIC 
> >>>>>>>>>>>> -o .libs/libdispatch_la-ncbytes.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran 
> >>>>>>>>>>>> -I../include -g -O2 -MT libdispatch_la-ncbytes.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/libdispatch_la-ncbytes.Tpo -c ncbytes.c -o 
> >>>>>>>>>>>> libdispatch_la-ncbytes.o >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/libdispatch_la-ncbytes.Tpo 
> >>>>>>>>>>>> .deps/libdispatch_la-ncbytes.Plo
> >>>>>>>>>>>> /bin/sh ../libtool --tag=CC   --mode=link cc  -g -O2   -o 
> >>>>>>>>>>>> libdispatch.la  libdispatch_la-parallel.lo 
> >>>>>>>>>>>> libdispatch_la-copy.lo libdispatch_la-file.lo 
> >>>>>>>>>>>> libdispatch_la-dim.lo libdispatch_la-att.lo 
> >>>>>>>>>>>> libdispatch_la-error.lo libdispatch_la-var.lo 
> >>>>>>>>>>>> libdispatch_la-dispatch.lo libdispatch_la-nc_url.lo 
> >>>>>>>>>>>> libdispatch_la-nclist.lo libdispatch_la-ncbytes.lo   -lz
> >>>>>>>>>>>> libtool: link: ar cru .libs/libdispatch.a 
> >>>>>>>>>>>> .libs/libdispatch_la-parallel.o .libs/libdispatch_la-copy.o 
> >>>>>>>>>>>> .libs/libdispatch_la-file.o .libs/libdispatch_la-dim.o 
> >>>>>>>>>>>> .libs/libdispatch_la-att.o .libs/libdispatch_la-error.o 
> >>>>>>>>>>>> .libs/libdispatch_la-var.o .libs/libdispatch_la-dispatch.o 
> >>>>>>>>>>>> .libs/libdispatch_la-nc_url.o .libs/libdispatch_la-nclist.o 
> >>>>>>>>>>>> .libs/libdispatch_la-ncbytes.o
> >>>>>>>>>>>> libtool: link: ranlib .libs/libdispatch.a
> >>>>>>>>>>>> libtool: link: ( cd ".libs" && rm -f "libdispatch.la" && ln -s 
> >>>>>>>>>>>> "../libdispatch.la" "libdispatch.la" )
> >>>>>>>>>>>> depbase=`echo v2i.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
> >>>>>>>>>>>>  /bin/sh ../libtool --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I../include    -g -O2 -MT v2i.lo -MD -MP 
> >>>>>>>>>>>> -MF $depbase.Tpo -c -o v2i.lo v2i.c &&\
> >>>>>>>>>>>>  mv -f $depbase.Tpo $depbase.Plo
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran 
> >>>>>>>>>>>> -I../include -g -O2 -MT v2i.lo -MD -MP -MF .deps/v2i.Tpo -c 
> >>>>>>>>>>>> v2i.c  -fno-common -DPIC -o .libs/v2i.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran 
> >>>>>>>>>>>> -I../include -g -O2 -MT v2i.lo -MD -MP -MF .deps/v2i.Tpo -c 
> >>>>>>>>>>>> v2i.c -o v2i.o >/dev/null 2>&1
> >>>>>>>>>>>> /bin/sh ../libtool --tag=CC   --mode=link cc  -g -O2   -o 
> >>>>>>>>>>>> libnetcdf2.la  v2i.lo  -lz
> >>>>>>>>>>>> libtool: link: ar cru .libs/libnetcdf2.a .libs/v2i.o
> >>>>>>>>>>>> libtool: link: ranlib .libs/libnetcdf2.a
> >>>>>>>>>>>> libtool: link: ( cd ".libs" && rm -f "libnetcdf2.la" && ln -s 
> >>>>>>>>>>>> "../libnetcdf2.la" "libnetcdf2.la" )
> >>>>>>>>>>>> Making all in oc
> >>>>>>>>>>>> make  all-am
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I.. -I../libsrc    -g -O2 -MT 
> >>>>>>>>>>>> liboc_la-daptab.lo -MD -MP -MF .deps/liboc_la-daptab.Tpo -c -o 
> >>>>>>>>>>>> liboc_la-daptab.lo `test -f 'daptab.c' || echo './'`daptab.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-daptab.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-daptab.Tpo -c daptab.c  -fno-common -DPIC -o 
> >>>>>>>>>>>> .libs/liboc_la-daptab.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-daptab.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-daptab.Tpo -c daptab.c -o liboc_la-daptab.o 
> >>>>>>>>>>>> >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/liboc_la-daptab.Tpo .deps/liboc_la-daptab.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I.. -I../libsrc    -g -O2 -MT 
> >>>>>>>>>>>> liboc_la-curlfunctions.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-curlfunctions.Tpo -c -o liboc_la-curlfunctions.lo 
> >>>>>>>>>>>> `test -f 'curlfunctions.c' || echo './'`curlfunctions.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-curlfunctions.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-curlfunctions.Tpo -c curlfunctions.c  -fno-common 
> >>>>>>>>>>>> -DPIC -o .libs/liboc_la-curlfunctions.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-curlfunctions.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-curlfunctions.Tpo -c curlfunctions.c -o 
> >>>>>>>>>>>> liboc_la-curlfunctions.o >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/liboc_la-curlfunctions.Tpo 
> >>>>>>>>>>>> .deps/liboc_la-curlfunctions.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I.. -I../libsrc    -g -O2 -MT 
> >>>>>>>>>>>> liboc_la-dapparse.lo -MD -MP -MF .deps/liboc_la-dapparse.Tpo -c 
> >>>>>>>>>>>> -o liboc_la-dapparse.lo `test -f 'dapparse.c' || echo 
> >>>>>>>>>>>> './'`dapparse.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-dapparse.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-dapparse.Tpo -c dapparse.c  -fno-common -DPIC -o 
> >>>>>>>>>>>> .libs/liboc_la-dapparse.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-dapparse.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-dapparse.Tpo -c dapparse.c -o liboc_la-dapparse.o 
> >>>>>>>>>>>> >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/liboc_la-dapparse.Tpo .deps/liboc_la-dapparse.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I.. -I../libsrc    -g -O2 -MT 
> >>>>>>>>>>>> liboc_la-daplex.lo -MD -MP -MF .deps/liboc_la-daplex.Tpo -c -o 
> >>>>>>>>>>>> liboc_la-daplex.lo `test -f 'daplex.c' || echo './'`daplex.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-daplex.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-daplex.Tpo -c daplex.c  -fno-common -DPIC -o 
> >>>>>>>>>>>> .libs/liboc_la-daplex.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-daplex.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-daplex.Tpo -c daplex.c -o liboc_la-daplex.o 
> >>>>>>>>>>>> >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/liboc_la-daplex.Tpo .deps/liboc_la-daplex.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I.. -I../libsrc    -g -O2 -MT 
> >>>>>>>>>>>> liboc_la-dapurl.lo -MD -MP -MF .deps/liboc_la-dapurl.Tpo -c -o 
> >>>>>>>>>>>> liboc_la-dapurl.lo `test -f 'dapurl.c' || echo './'`dapurl.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-dapurl.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-dapurl.Tpo -c dapurl.c  -fno-common -DPIC -o 
> >>>>>>>>>>>> .libs/liboc_la-dapurl.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-dapurl.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-dapurl.Tpo -c dapurl.c -o liboc_la-dapurl.o 
> >>>>>>>>>>>> >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/liboc_la-dapurl.Tpo .deps/liboc_la-dapurl.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I.. -I../libsrc    -g -O2 -MT 
> >>>>>>>>>>>> liboc_la-http.lo -MD -MP -MF .deps/liboc_la-http.Tpo -c -o 
> >>>>>>>>>>>> liboc_la-http.lo `test -f 'http.c' || echo './'`http.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-http.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-http.Tpo -c http.c  -fno-common -DPIC -o 
> >>>>>>>>>>>> .libs/liboc_la-http.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-http.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-http.Tpo -c http.c -o liboc_la-http.o >/dev/null 
> >>>>>>>>>>>> 2>&1
> >>>>>>>>>>>> mv -f .deps/liboc_la-http.Tpo .deps/liboc_la-http.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I.. -I../libsrc    -g -O2 -MT 
> >>>>>>>>>>>> liboc_la-ocbytes.lo -MD -MP -MF .deps/liboc_la-ocbytes.Tpo -c -o 
> >>>>>>>>>>>> liboc_la-ocbytes.lo `test -f 'ocbytes.c' || echo './'`ocbytes.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-ocbytes.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-ocbytes.Tpo -c ocbytes.c  -fno-common -DPIC -o 
> >>>>>>>>>>>> .libs/liboc_la-ocbytes.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-ocbytes.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-ocbytes.Tpo -c ocbytes.c -o liboc_la-ocbytes.o 
> >>>>>>>>>>>> >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/liboc_la-ocbytes.Tpo .deps/liboc_la-ocbytes.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I.. -I../libsrc    -g -O2 -MT 
> >>>>>>>>>>>> liboc_la-oc.lo -MD -MP -MF .deps/liboc_la-oc.Tpo -c -o 
> >>>>>>>>>>>> liboc_la-oc.lo `test -f 'oc.c' || echo './'`oc.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-oc.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-oc.Tpo -c oc.c  -fno-common -DPIC -o 
> >>>>>>>>>>>> .libs/liboc_la-oc.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-oc.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-oc.Tpo -c oc.c -o liboc_la-oc.o >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/liboc_la-oc.Tpo .deps/liboc_la-oc.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I.. -I../libsrc    -g -O2 -MT 
> >>>>>>>>>>>> liboc_la-occompile.lo -MD -MP -MF .deps/liboc_la-occompile.Tpo 
> >>>>>>>>>>>> -c -o liboc_la-occompile.lo `test -f 'occompile.c' || echo 
> >>>>>>>>>>>> './'`occompile.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-occompile.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-occompile.Tpo -c occompile.c  -fno-common -DPIC 
> >>>>>>>>>>>> -o .libs/liboc_la-occompile.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-occompile.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-occompile.Tpo -c occompile.c -o 
> >>>>>>>>>>>> liboc_la-occompile.o >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/liboc_la-occompile.Tpo .deps/liboc_la-occompile.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I.. -I../libsrc    -g -O2 -MT 
> >>>>>>>>>>>> liboc_la-occontent.lo -MD -MP -MF .deps/liboc_la-occontent.Tpo 
> >>>>>>>>>>>> -c -o liboc_la-occontent.lo `test -f 'occontent.c' || echo 
> >>>>>>>>>>>> './'`occontent.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-occontent.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-occontent.Tpo -c occontent.c  -fno-common -DPIC 
> >>>>>>>>>>>> -o .libs/liboc_la-occontent.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-occontent.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-occontent.Tpo -c occontent.c -o 
> >>>>>>>>>>>> liboc_la-occontent.o >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/liboc_la-occontent.Tpo .deps/liboc_la-occontent.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I.. -I../libsrc    -g -O2 -MT 
> >>>>>>>>>>>> liboc_la-ocdata.lo -MD -MP -MF .deps/liboc_la-ocdata.Tpo -c -o 
> >>>>>>>>>>>> liboc_la-ocdata.lo `test -f 'ocdata.c' || echo './'`ocdata.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-ocdata.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-ocdata.Tpo -c ocdata.c  -fno-common -DPIC -o 
> >>>>>>>>>>>> .libs/liboc_la-ocdata.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-ocdata.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-ocdata.Tpo -c ocdata.c -o liboc_la-ocdata.o 
> >>>>>>>>>>>> >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/liboc_la-ocdata.Tpo .deps/liboc_la-ocdata.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I.. -I../libsrc    -g -O2 -MT 
> >>>>>>>>>>>> liboc_la-ocdebug.lo -MD -MP -MF .deps/liboc_la-ocdebug.Tpo -c -o 
> >>>>>>>>>>>> liboc_la-ocdebug.lo `test -f 'ocdebug.c' || echo './'`ocdebug.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-ocdebug.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-ocdebug.Tpo -c ocdebug.c  -fno-common -DPIC -o 
> >>>>>>>>>>>> .libs/liboc_la-ocdebug.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-ocdebug.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-ocdebug.Tpo -c ocdebug.c -o liboc_la-ocdebug.o 
> >>>>>>>>>>>> >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/liboc_la-ocdebug.Tpo .deps/liboc_la-ocdebug.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I.. -I../libsrc    -g -O2 -MT 
> >>>>>>>>>>>> liboc_la-ocdrno.lo -MD -MP -MF .deps/liboc_la-ocdrno.Tpo -c -o 
> >>>>>>>>>>>> liboc_la-ocdrno.lo `test -f 'ocdrno.c' || echo './'`ocdrno.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-ocdrno.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-ocdrno.Tpo -c ocdrno.c  -fno-common -DPIC -o 
> >>>>>>>>>>>> .libs/liboc_la-ocdrno.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-ocdrno.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-ocdrno.Tpo -c ocdrno.c -o liboc_la-ocdrno.o 
> >>>>>>>>>>>> >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/liboc_la-ocdrno.Tpo .deps/liboc_la-ocdrno.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I.. -I../libsrc    -g -O2 -MT 
> >>>>>>>>>>>> liboc_la-ocdump.lo -MD -MP -MF .deps/liboc_la-ocdump.Tpo -c -o 
> >>>>>>>>>>>> liboc_la-ocdump.lo `test -f 'ocdump.c' || echo './'`ocdump.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-ocdump.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-ocdump.Tpo -c ocdump.c  -fno-common -DPIC -o 
> >>>>>>>>>>>> .libs/liboc_la-ocdump.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-ocdump.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-ocdump.Tpo -c ocdump.c -o liboc_la-ocdump.o 
> >>>>>>>>>>>> >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/liboc_la-ocdump.Tpo .deps/liboc_la-ocdump.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I.. -I../libsrc    -g -O2 -MT 
> >>>>>>>>>>>> liboc_la-ocinternal.lo -MD -MP -MF .deps/liboc_la-ocinternal.Tpo 
> >>>>>>>>>>>> -c -o liboc_la-ocinternal.lo `test -f 'ocinternal.c' || echo 
> >>>>>>>>>>>> './'`ocinternal.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-ocinternal.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-ocinternal.Tpo -c ocinternal.c  -fno-common -DPIC 
> >>>>>>>>>>>> -o .libs/liboc_la-ocinternal.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-ocinternal.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-ocinternal.Tpo -c ocinternal.c -o 
> >>>>>>>>>>>> liboc_la-ocinternal.o >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/liboc_la-ocinternal.Tpo .deps/liboc_la-ocinternal.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I.. -I../libsrc    -g -O2 -MT 
> >>>>>>>>>>>> liboc_la-oclist.lo -MD -MP -MF .deps/liboc_la-oclist.Tpo -c -o 
> >>>>>>>>>>>> liboc_la-oclist.lo `test -f 'oclist.c' || echo './'`oclist.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-oclist.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-oclist.Tpo -c oclist.c  -fno-common -DPIC -o 
> >>>>>>>>>>>> .libs/liboc_la-oclist.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-oclist.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-oclist.Tpo -c oclist.c -o liboc_la-oclist.o 
> >>>>>>>>>>>> >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/liboc_la-oclist.Tpo .deps/liboc_la-oclist.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I.. -I../libsrc    -g -O2 -MT 
> >>>>>>>>>>>> liboc_la-oclog.lo -MD -MP -MF .deps/liboc_la-oclog.Tpo -c -o 
> >>>>>>>>>>>> liboc_la-oclog.lo `test -f 'oclog.c' || echo './'`oclog.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-oclog.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-oclog.Tpo -c oclog.c  -fno-common -DPIC -o 
> >>>>>>>>>>>> .libs/liboc_la-oclog.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-oclog.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-oclog.Tpo -c oclog.c -o liboc_la-oclog.o 
> >>>>>>>>>>>> >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/liboc_la-oclog.Tpo .deps/liboc_la-oclog.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I.. -I../libsrc    -g -O2 -MT 
> >>>>>>>>>>>> liboc_la-ocnode.lo -MD -MP -MF .deps/liboc_la-ocnode.Tpo -c -o 
> >>>>>>>>>>>> liboc_la-ocnode.lo `test -f 'ocnode.c' || echo './'`ocnode.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-ocnode.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-ocnode.Tpo -c ocnode.c  -fno-common -DPIC -o 
> >>>>>>>>>>>> .libs/liboc_la-ocnode.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-ocnode.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-ocnode.Tpo -c ocnode.c -o liboc_la-ocnode.o 
> >>>>>>>>>>>> >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/liboc_la-ocnode.Tpo .deps/liboc_la-ocnode.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I.. -I../libsrc    -g -O2 -MT 
> >>>>>>>>>>>> liboc_la-ocutil.lo -MD -MP -MF .deps/liboc_la-ocutil.Tpo -c -o 
> >>>>>>>>>>>> liboc_la-ocutil.lo `test -f 'ocutil.c' || echo './'`ocutil.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-ocutil.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-ocutil.Tpo -c ocutil.c  -fno-common -DPIC -o 
> >>>>>>>>>>>> .libs/liboc_la-ocutil.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-ocutil.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-ocutil.Tpo -c ocutil.c -o liboc_la-ocutil.o 
> >>>>>>>>>>>> >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/liboc_la-ocutil.Tpo .deps/liboc_la-ocutil.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I.. -I../libsrc    -g -O2 -MT 
> >>>>>>>>>>>> liboc_la-occlientparams.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-occlientparams.Tpo -c -o 
> >>>>>>>>>>>> liboc_la-occlientparams.lo `test -f 'occlientparams.c' || echo 
> >>>>>>>>>>>> './'`occlientparams.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-occlientparams.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-occlientparams.Tpo -c occlientparams.c  
> >>>>>>>>>>>> -fno-common -DPIC -o .libs/liboc_la-occlientparams.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-occlientparams.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-occlientparams.Tpo -c occlientparams.c -o 
> >>>>>>>>>>>> liboc_la-occlientparams.o >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/liboc_la-occlientparams.Tpo 
> >>>>>>>>>>>> .deps/liboc_la-occlientparams.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I.. -I../libsrc    -g -O2 -MT 
> >>>>>>>>>>>> liboc_la-ocxdr_stdio.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-ocxdr_stdio.Tpo -c -o liboc_la-ocxdr_stdio.lo 
> >>>>>>>>>>>> `test -f 'ocxdr_stdio.c' || echo './'`ocxdr_stdio.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-ocxdr_stdio.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-ocxdr_stdio.Tpo -c ocxdr_stdio.c  -fno-common 
> >>>>>>>>>>>> -DPIC -o .libs/liboc_la-ocxdr_stdio.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-ocxdr_stdio.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-ocxdr_stdio.Tpo -c ocxdr_stdio.c -o 
> >>>>>>>>>>>> liboc_la-ocxdr_stdio.o >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/liboc_la-ocxdr_stdio.Tpo 
> >>>>>>>>>>>> .deps/liboc_la-ocxdr_stdio.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I.. -I../libsrc    -g -O2 -MT 
> >>>>>>>>>>>> liboc_la-rc.lo -MD -MP -MF .deps/liboc_la-rc.Tpo -c -o 
> >>>>>>>>>>>> liboc_la-rc.lo `test -f 'rc.c' || echo './'`rc.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-rc.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-rc.Tpo -c rc.c  -fno-common -DPIC -o 
> >>>>>>>>>>>> .libs/liboc_la-rc.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-rc.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-rc.Tpo -c rc.c -o liboc_la-rc.o >/dev/null 2>&1
> >>>>>>>>>>>> mv -f .deps/liboc_la-rc.Tpo .deps/liboc_la-rc.Plo
> >>>>>>>>>>>> /bin/sh ../libtool  --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I.. -I../fortran  -I.. -I../libsrc    -g -O2 -MT 
> >>>>>>>>>>>> liboc_la-read.lo -MD -MP -MF .deps/liboc_la-read.Tpo -c -o 
> >>>>>>>>>>>> liboc_la-read.lo `test -f 'read.c' || echo './'`read.c
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-read.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-read.Tpo -c read.c  -fno-common -DPIC -o 
> >>>>>>>>>>>> .libs/liboc_la-read.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../fortran -I.. 
> >>>>>>>>>>>> -I../libsrc -g -O2 -MT liboc_la-read.lo -MD -MP -MF 
> >>>>>>>>>>>> .deps/liboc_la-read.Tpo -c read.c -o liboc_la-read.o >/dev/null 
> >>>>>>>>>>>> 2>&1
> >>>>>>>>>>>> mv -f .deps/liboc_la-read.Tpo .deps/liboc_la-read.Plo
> >>>>>>>>>>>> /bin/sh ../libtool --tag=CC   --mode=link cc  -g -O2   -o 
> >>>>>>>>>>>> liboc.la  liboc_la-daptab.lo  liboc_la-curlfunctions.lo 
> >>>>>>>>>>>> liboc_la-dapparse.lo liboc_la-daplex.lo liboc_la-dapurl.lo 
> >>>>>>>>>>>> liboc_la-http.lo liboc_la-ocbytes.lo liboc_la-oc.lo 
> >>>>>>>>>>>> liboc_la-occompile.lo liboc_la-occontent.lo liboc_la-ocdata.lo 
> >>>>>>>>>>>> liboc_la-ocdebug.lo liboc_la-ocdrno.lo liboc_la-ocdump.lo 
> >>>>>>>>>>>> liboc_la-ocinternal.lo liboc_la-oclist.lo liboc_la-oclog.lo 
> >>>>>>>>>>>> liboc_la-ocnode.lo liboc_la-ocutil.lo liboc_la-occlientparams.lo 
> >>>>>>>>>>>> liboc_la-ocxdr_stdio.lo liboc_la-rc.lo liboc_la-read.lo  -lcurl 
> >>>>>>>>>>>> -lz
> >>>>>>>>>>>> libtool: link: ar cru .libs/liboc.a .libs/liboc_la-daptab.o 
> >>>>>>>>>>>> .libs/liboc_la-curlfunctions.o .libs/liboc_la-dapparse.o 
> >>>>>>>>>>>> .libs/liboc_la-daplex.o .libs/liboc_la-dapurl.o 
> >>>>>>>>>>>> .libs/liboc_la-http.o .libs/liboc_la-ocbytes.o 
> >>>>>>>>>>>> .libs/liboc_la-oc.o .libs/liboc_la-occompile.o 
> >>>>>>>>>>>> .libs/liboc_la-occontent.o .libs/liboc_la-ocdata.o 
> >>>>>>>>>>>> .libs/liboc_la-ocdebug.o .libs/liboc_la-ocdrno.o 
> >>>>>>>>>>>> .libs/liboc_la-ocdump.o .libs/liboc_la-ocinternal.o 
> >>>>>>>>>>>> .libs/liboc_la-oclist.o .libs/liboc_la-oclog.o 
> >>>>>>>>>>>> .libs/liboc_la-ocnode.o .libs/liboc_la-ocutil.o 
> >>>>>>>>>>>> .libs/liboc_la-occlientparams.o .libs/liboc_la-ocxdr_stdio.o 
> >>>>>>>>>>>> .libs/liboc_la-rc.o .libs/liboc_la-read.o
> >>>>>>>>>>>> /usr/bin/ranlib: file: .libs/liboc.a(liboc_la-ocdrno.o) has no 
> >>>>>>>>>>>> symbols
> >>>>>>>>>>>> libtool: link: ranlib .libs/liboc.a
> >>>>>>>>>>>> ranlib: file: .libs/liboc.a(liboc_la-ocdrno.o) has no symbols
> >>>>>>>>>>>> libtool: link: ( cd ".libs" && rm -f "liboc.la" && ln -s 
> >>>>>>>>>>>> "../liboc.la" "liboc.la" )
> >>>>>>>>>>>> Making all in f90
> >>>>>>>>>>>> g95  -g -O2 -c -o typeSizes.o  typeSizes.f90
> >>>>>>>>>>>> make  all-am
> >>>>>>>>>>>> /bin/sh ../libtool --tag=FC   --mode=compile g95  -g -O2 -c -o 
> >>>>>>>>>>>> typeSizes.lo  typeSizes.f90
> >>>>>>>>>>>> libtool: compile:  g95 -g -O2 -c typeSizes.f90  -fno-common -o 
> >>>>>>>>>>>> .libs/typeSizes.o
> >>>>>>>>>>>> libtool: compile:  g95 -g -O2 -c typeSizes.f90 -o typeSizes.o 
> >>>>>>>>>>>> >/dev/null 2>&1
> >>>>>>>>>>>> /bin/sh ../libtool --tag=FC   --mode=compile g95  -g -O2 -c -o 
> >>>>>>>>>>>> netcdf.lo  netcdf.f90
> >>>>>>>>>>>> libtool: compile:  g95 -g -O2 -c netcdf.f90  -fno-common -o 
> >>>>>>>>>>>> .libs/netcdf.o
> >>>>>>>>>>>> netcdf_eightbyte.f90: In function 
> >>>>>>>>>>>> 'netcdf_MP_nf90_inquire_variable':
> >>>>>>>>>>>> netcdf_variables.f90:72: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_7d_eightbyteint':
> >>>>>>>>>>>> netcdf_eightbyte.f90:482: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:483: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:485: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_6d_eightbyteint':
> >>>>>>>>>>>> netcdf_eightbyte.f90:445: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:446: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:448: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_5d_eightbyteint':
> >>>>>>>>>>>> netcdf_eightbyte.f90:408: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:409: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:411: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_4d_eightbyteint':
> >>>>>>>>>>>> netcdf_eightbyte.f90:371: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:372: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:374: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_3d_eightbyteint':
> >>>>>>>>>>>> netcdf_eightbyte.f90:334: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:335: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:337: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_2d_eightbyteint':
> >>>>>>>>>>>> netcdf_eightbyte.f90:297: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:298: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:300: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_1d_eightbyteint':
> >>>>>>>>>>>> netcdf_eightbyte.f90:260: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:261: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:263: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:263: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:263: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:263: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:263: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:263: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:263: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:263: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:260: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:263: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_7d_eightbyteint':
> >>>>>>>>>>>> netcdf_eightbyte.f90:224: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:225: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:227: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_6d_eightbyteint':
> >>>>>>>>>>>> netcdf_eightbyte.f90:189: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:190: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:192: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_5d_eightbyteint':
> >>>>>>>>>>>> netcdf_eightbyte.f90:154: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:155: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:157: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_4d_eightbyteint':
> >>>>>>>>>>>> netcdf_eightbyte.f90:119: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:120: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:122: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_3d_eightbyteint':
> >>>>>>>>>>>> netcdf_eightbyte.f90:84: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:85: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:87: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_2d_eightbyteint':
> >>>>>>>>>>>> netcdf_eightbyte.f90:49: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:50: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:52: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_1d_eightbyteint':
> >>>>>>>>>>>> netcdf_eightbyte.f90:14: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:15: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:17: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:17: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:17: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:17: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:17: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:17: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:17: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:17: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:14: warning: will never be executed
> >>>>>>>>>>>> netcdf_eightbyte.f90:17: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 
> >>>>>>>>>>>> 'netcdf_MP_nf90_get_var_7d_eightbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:2622: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2623: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2625: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 
> >>>>>>>>>>>> 'netcdf_MP_nf90_get_var_6d_eightbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:2587: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2588: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2590: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 
> >>>>>>>>>>>> 'netcdf_MP_nf90_get_var_5d_eightbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:2552: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2553: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2555: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 
> >>>>>>>>>>>> 'netcdf_MP_nf90_get_var_4d_eightbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:2517: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2518: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2520: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 
> >>>>>>>>>>>> 'netcdf_MP_nf90_get_var_3d_eightbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:2482: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2483: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2485: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 
> >>>>>>>>>>>> 'netcdf_MP_nf90_get_var_2d_eightbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:2447: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2448: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2450: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 
> >>>>>>>>>>>> 'netcdf_MP_nf90_get_var_1d_eightbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:2412: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2413: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2415: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2415: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2415: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2415: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2415: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2415: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2415: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2415: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2412: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2415: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_7d_fourbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:2377: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2378: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2380: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_6d_fourbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:2342: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2343: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2345: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_5d_fourbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:2307: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2308: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2310: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_4d_fourbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:2272: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2273: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2275: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_3d_fourbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:2237: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2238: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2240: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_2d_fourbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:2202: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2203: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2205: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_1d_fourbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:2167: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2168: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2170: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2170: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2170: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2170: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2170: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2170: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2170: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2170: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2167: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2170: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_7d_fourbyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:2131: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2132: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2134: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_6d_fourbyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:2094: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2095: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2097: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_5d_fourbyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:2057: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2058: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2060: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_4d_fourbyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:2020: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2021: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:2023: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_3d_fourbyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:1983: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1984: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1986: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_2d_fourbyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:1946: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1947: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1949: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_1d_fourbyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:1909: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1910: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1912: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1912: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1912: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1912: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1912: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1912: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1912: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1912: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1909: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1912: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_7d_twobyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:1873: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1874: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1876: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_6d_twobyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:1838: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1839: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1841: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_5d_twobyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:1803: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1804: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1806: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_4d_twobyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:1768: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1769: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1771: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_3d_twobyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:1733: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1734: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1736: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_2d_twobyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:1698: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1699: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1701: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_1d_twobyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:1663: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1664: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1666: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1666: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1666: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1666: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1666: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1666: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1666: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1666: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1663: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1666: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_7d_onebyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:1628: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1629: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1631: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_6d_onebyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:1593: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1594: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1596: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_5d_onebyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:1558: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1559: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1561: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_4d_onebyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:1523: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1524: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1526: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_3d_onebyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:1488: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1489: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1491: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_2d_onebyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:1453: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1454: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1456: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_1d_onebyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:1418: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1419: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1421: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1421: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1421: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1421: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1421: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1421: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1421: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1421: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1418: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1421: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 
> >>>>>>>>>>>> 'netcdf_MP_nf90_put_var_7d_eightbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:1383: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1384: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1386: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 
> >>>>>>>>>>>> 'netcdf_MP_nf90_put_var_6d_eightbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:1348: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1349: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1351: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 
> >>>>>>>>>>>> 'netcdf_MP_nf90_put_var_5d_eightbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:1313: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1314: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1316: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 
> >>>>>>>>>>>> 'netcdf_MP_nf90_put_var_4d_eightbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:1278: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1279: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1281: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 
> >>>>>>>>>>>> 'netcdf_MP_nf90_put_var_3d_eightbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:1243: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1244: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1246: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 
> >>>>>>>>>>>> 'netcdf_MP_nf90_put_var_2d_eightbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:1208: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1209: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1211: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 
> >>>>>>>>>>>> 'netcdf_MP_nf90_put_var_1d_eightbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:1173: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1174: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1176: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1176: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1176: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1176: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1176: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1176: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1176: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1176: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1173: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1176: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_7d_fourbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:1138: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1139: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1141: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_6d_fourbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:1103: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1104: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1106: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_5d_fourbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:1068: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1069: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1071: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_4d_fourbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:1033: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1034: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1036: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_3d_fourbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:998: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:999: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:1001: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_2d_fourbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:963: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:964: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:966: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_1d_fourbytereal':
> >>>>>>>>>>>> netcdf_expanded.f90:928: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:929: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:931: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:931: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:931: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:931: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:931: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:931: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:931: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:931: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:928: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:931: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_7d_fourbyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:893: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:894: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:896: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_6d_fourbyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:858: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:859: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:861: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_5d_fourbyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:823: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:824: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:826: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_4d_fourbyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:788: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:789: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:791: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_3d_fourbyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:753: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:754: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:756: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_2d_fourbyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:718: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:719: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:721: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_1d_fourbyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:683: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:684: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:686: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:686: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:686: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:686: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:686: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:686: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:686: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:686: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:683: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:686: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_7d_twobyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:648: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:649: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:651: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_6d_twobyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:613: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:614: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:616: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_5d_twobyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:578: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:579: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:581: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_4d_twobyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:543: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:544: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:546: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_3d_twobyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:508: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:509: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:511: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_2d_twobyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:473: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:474: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:476: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_1d_twobyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:438: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:439: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:441: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:441: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:441: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:441: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:441: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:441: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:441: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:441: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:438: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:441: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_7d_onebyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:403: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:404: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:406: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_6d_onebyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:368: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:369: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:371: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_5d_onebyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:333: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:334: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:336: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_4d_onebyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:298: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:299: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:301: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_3d_onebyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:263: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:264: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:266: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_2d_onebyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:228: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:229: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:231: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_1d_onebyteint':
> >>>>>>>>>>>> netcdf_expanded.f90:193: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:194: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:196: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:196: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:196: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:196: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:196: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:196: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:196: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:196: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:193: warning: will never be executed
> >>>>>>>>>>>> netcdf_expanded.f90:196: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_get_var_1d_text':
> >>>>>>>>>>>> netcdf_text_variables.f90:284: warning: will never be executed
> >>>>>>>>>>>> netcdf.f90: In function 'netcdf_MP_nf90_put_var_1d_text':
> >>>>>>>>>>>> netcdf_text_variables.f90:60: warning: will never be executed
> >>>>>>>>>>>> netcdf_text_variables.f90:60: warning: will never be executed
> >>>>>>>>>>>> netcdf_text_variables.f90:60: warning: will never be executed
> >>>>>>>>>>>> netcdf_text_variables.f90:60: warning: will never be executed
> >>>>>>>>>>>> netcdf_text_variables.f90:60: warning: will never be executed
> >>>>>>>>>>>> netcdf_text_variables.f90:60: warning: will never be executed
> >>>>>>>>>>>> netcdf_text_variables.f90:60: warning: will never be executed
> >>>>>>>>>>>> netcdf_text_variables.f90:60: warning: will never be executed
> >>>>>>>>>>>> libtool: compile:  g95 -g -O2 -c netcdf.f90 -o netcdf.o 
> >>>>>>>>>>>> >/dev/null 2>&1
> >>>>>>>>>>>> /bin/sh ../libtool --tag=FC   --mode=link g95  -g -O2 -lz -lcurl 
> >>>>>>>>>>>>  -o libnetcdff90.la  typeSizes.lo  netcdf.lo  -lz
> >>>>>>>>>>>> libtool: link: ar cru .libs/libnetcdff90.a .libs/typeSizes.o 
> >>>>>>>>>>>> .libs/netcdf.o
> >>>>>>>>>>>> libtool: link: ranlib .libs/libnetcdff90.a
> >>>>>>>>>>>> libtool: link: ( cd ".libs" && rm -f "libnetcdff90.la" && ln -s 
> >>>>>>>>>>>> "../libnetcdff90.la" "libnetcdff90.la" )
> >>>>>>>>>>>> Making all in fortran
> >>>>>>>>>>>> echo '!     NetCDF-3.' > netcdf.inc
> >>>>>>>>>>>> cat ../fortran/netcdf3.inc >> netcdf.inc
> >>>>>>>>>>>> echo >> netcdf.inc
> >>>>>>>>>>>> echo '!     NetCDF-2.' >> netcdf.inc
> >>>>>>>>>>>> cat ../fortran/netcdf2.inc >> netcdf.inc
> >>>>>>>>>>>> make  all-am
> >>>>>>>>>>>> depbase=`echo fort-attio.lo | sed 
> >>>>>>>>>>>> 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
> >>>>>>>>>>>>  /bin/sh ../libtool --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I..  -I../include    -g -O2 -MT fort-attio.lo -MD -MP -MF 
> >>>>>>>>>>>> $depbase.Tpo -c -o fort-attio.lo fort-attio.c &&\
> >>>>>>>>>>>>  mv -f $depbase.Tpo $depbase.Plo
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-attio.lo -MD -MP -MF .deps/fort-attio.Tpo -c 
> >>>>>>>>>>>> fort-attio.c  -fno-common -DPIC -o .libs/fort-attio.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-attio.lo -MD -MP -MF .deps/fort-attio.Tpo -c 
> >>>>>>>>>>>> fort-attio.c -o fort-attio.o >/dev/null 2>&1
> >>>>>>>>>>>> depbase=`echo fort-control.lo | sed 
> >>>>>>>>>>>> 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
> >>>>>>>>>>>>  /bin/sh ../libtool --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I..  -I../include    -g -O2 -MT fort-control.lo -MD -MP -MF 
> >>>>>>>>>>>> $depbase.Tpo -c -o fort-control.lo fort-control.c &&\
> >>>>>>>>>>>>  mv -f $depbase.Tpo $depbase.Plo
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-control.lo -MD -MP -MF .deps/fort-control.Tpo -c 
> >>>>>>>>>>>> fort-control.c  -fno-common -DPIC -o .libs/fort-control.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-control.lo -MD -MP -MF .deps/fort-control.Tpo -c 
> >>>>>>>>>>>> fort-control.c -o fort-control.o >/dev/null 2>&1
> >>>>>>>>>>>> depbase=`echo fort-dim.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
> >>>>>>>>>>>>  /bin/sh ../libtool --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I..  -I../include    -g -O2 -MT fort-dim.lo -MD -MP -MF 
> >>>>>>>>>>>> $depbase.Tpo -c -o fort-dim.lo fort-dim.c &&\
> >>>>>>>>>>>>  mv -f $depbase.Tpo $depbase.Plo
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-dim.lo -MD -MP -MF .deps/fort-dim.Tpo -c fort-dim.c 
> >>>>>>>>>>>>  -fno-common -DPIC -o .libs/fort-dim.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-dim.lo -MD -MP -MF .deps/fort-dim.Tpo -c fort-dim.c 
> >>>>>>>>>>>> -o fort-dim.o >/dev/null 2>&1
> >>>>>>>>>>>> depbase=`echo fort-genatt.lo | sed 
> >>>>>>>>>>>> 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
> >>>>>>>>>>>>  /bin/sh ../libtool --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I..  -I../include    -g -O2 -MT fort-genatt.lo -MD -MP -MF 
> >>>>>>>>>>>> $depbase.Tpo -c -o fort-genatt.lo fort-genatt.c &&\
> >>>>>>>>>>>>  mv -f $depbase.Tpo $depbase.Plo
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-genatt.lo -MD -MP -MF .deps/fort-genatt.Tpo -c 
> >>>>>>>>>>>> fort-genatt.c  -fno-common -DPIC -o .libs/fort-genatt.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-genatt.lo -MD -MP -MF .deps/fort-genatt.Tpo -c 
> >>>>>>>>>>>> fort-genatt.c -o fort-genatt.o >/dev/null 2>&1
> >>>>>>>>>>>> depbase=`echo fort-geninq.lo | sed 
> >>>>>>>>>>>> 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
> >>>>>>>>>>>>  /bin/sh ../libtool --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I..  -I../include    -g -O2 -MT fort-geninq.lo -MD -MP -MF 
> >>>>>>>>>>>> $depbase.Tpo -c -o fort-geninq.lo fort-geninq.c &&\
> >>>>>>>>>>>>  mv -f $depbase.Tpo $depbase.Plo
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-geninq.lo -MD -MP -MF .deps/fort-geninq.Tpo -c 
> >>>>>>>>>>>> fort-geninq.c  -fno-common -DPIC -o .libs/fort-geninq.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-geninq.lo -MD -MP -MF .deps/fort-geninq.Tpo -c 
> >>>>>>>>>>>> fort-geninq.c -o fort-geninq.o >/dev/null 2>&1
> >>>>>>>>>>>> depbase=`echo fort-genvar.lo | sed 
> >>>>>>>>>>>> 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
> >>>>>>>>>>>>  /bin/sh ../libtool --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I..  -I../include    -g -O2 -MT fort-genvar.lo -MD -MP -MF 
> >>>>>>>>>>>> $depbase.Tpo -c -o fort-genvar.lo fort-genvar.c &&\
> >>>>>>>>>>>>  mv -f $depbase.Tpo $depbase.Plo
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-genvar.lo -MD -MP -MF .deps/fort-genvar.Tpo -c 
> >>>>>>>>>>>> fort-genvar.c  -fno-common -DPIC -o .libs/fort-genvar.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-genvar.lo -MD -MP -MF .deps/fort-genvar.Tpo -c 
> >>>>>>>>>>>> fort-genvar.c -o fort-genvar.o >/dev/null 2>&1
> >>>>>>>>>>>> depbase=`echo fort-lib.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
> >>>>>>>>>>>>  /bin/sh ../libtool --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I..  -I../include    -g -O2 -MT fort-lib.lo -MD -MP -MF 
> >>>>>>>>>>>> $depbase.Tpo -c -o fort-lib.lo fort-lib.c &&\
> >>>>>>>>>>>>  mv -f $depbase.Tpo $depbase.Plo
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-lib.lo -MD -MP -MF .deps/fort-lib.Tpo -c fort-lib.c 
> >>>>>>>>>>>>  -fno-common -DPIC -o .libs/fort-lib.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-lib.lo -MD -MP -MF .deps/fort-lib.Tpo -c fort-lib.c 
> >>>>>>>>>>>> -o fort-lib.o >/dev/null 2>&1
> >>>>>>>>>>>> depbase=`echo fort-misc.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
> >>>>>>>>>>>>  /bin/sh ../libtool --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I..  -I../include    -g -O2 -MT fort-misc.lo -MD -MP -MF 
> >>>>>>>>>>>> $depbase.Tpo -c -o fort-misc.lo fort-misc.c &&\
> >>>>>>>>>>>>  mv -f $depbase.Tpo $depbase.Plo
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-misc.lo -MD -MP -MF .deps/fort-misc.Tpo -c 
> >>>>>>>>>>>> fort-misc.c  -fno-common -DPIC -o .libs/fort-misc.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-misc.lo -MD -MP -MF .deps/fort-misc.Tpo -c 
> >>>>>>>>>>>> fort-misc.c -o fort-misc.o >/dev/null 2>&1
> >>>>>>>>>>>> depbase=`echo fort-v2compat.lo | sed 
> >>>>>>>>>>>> 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
> >>>>>>>>>>>>  /bin/sh ../libtool --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I..  -I../include    -g -O2 -MT fort-v2compat.lo -MD -MP 
> >>>>>>>>>>>> -MF $depbase.Tpo -c -o fort-v2compat.lo fort-v2compat.c &&\
> >>>>>>>>>>>>  mv -f $depbase.Tpo $depbase.Plo
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-v2compat.lo -MD -MP -MF .deps/fort-v2compat.Tpo -c 
> >>>>>>>>>>>> fort-v2compat.c  -fno-common -DPIC -o .libs/fort-v2compat.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-v2compat.lo -MD -MP -MF .deps/fort-v2compat.Tpo -c 
> >>>>>>>>>>>> fort-v2compat.c -o fort-v2compat.o >/dev/null 2>&1
> >>>>>>>>>>>> depbase=`echo fort-vario.lo | sed 
> >>>>>>>>>>>> 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
> >>>>>>>>>>>>  /bin/sh ../libtool --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I..  -I../include    -g -O2 -MT fort-vario.lo -MD -MP -MF 
> >>>>>>>>>>>> $depbase.Tpo -c -o fort-vario.lo fort-vario.c &&\
> >>>>>>>>>>>>  mv -f $depbase.Tpo $depbase.Plo
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-vario.lo -MD -MP -MF .deps/fort-vario.Tpo -c 
> >>>>>>>>>>>> fort-vario.c  -fno-common -DPIC -o .libs/fort-vario.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-vario.lo -MD -MP -MF .deps/fort-vario.Tpo -c 
> >>>>>>>>>>>> fort-vario.c -o fort-vario.o >/dev/null 2>&1
> >>>>>>>>>>>> depbase=`echo fort-var1io.lo | sed 
> >>>>>>>>>>>> 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
> >>>>>>>>>>>>  /bin/sh ../libtool --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I..  -I../include    -g -O2 -MT fort-var1io.lo -MD -MP -MF 
> >>>>>>>>>>>> $depbase.Tpo -c -o fort-var1io.lo fort-var1io.c &&\
> >>>>>>>>>>>>  mv -f $depbase.Tpo $depbase.Plo
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-var1io.lo -MD -MP -MF .deps/fort-var1io.Tpo -c 
> >>>>>>>>>>>> fort-var1io.c  -fno-common -DPIC -o .libs/fort-var1io.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-var1io.lo -MD -MP -MF .deps/fort-var1io.Tpo -c 
> >>>>>>>>>>>> fort-var1io.c -o fort-var1io.o >/dev/null 2>&1
> >>>>>>>>>>>> depbase=`echo fort-varaio.lo | sed 
> >>>>>>>>>>>> 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
> >>>>>>>>>>>>  /bin/sh ../libtool --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I..  -I../include    -g -O2 -MT fort-varaio.lo -MD -MP -MF 
> >>>>>>>>>>>> $depbase.Tpo -c -o fort-varaio.lo fort-varaio.c &&\
> >>>>>>>>>>>>  mv -f $depbase.Tpo $depbase.Plo
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-varaio.lo -MD -MP -MF .deps/fort-varaio.Tpo -c 
> >>>>>>>>>>>> fort-varaio.c  -fno-common -DPIC -o .libs/fort-varaio.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-varaio.lo -MD -MP -MF .deps/fort-varaio.Tpo -c 
> >>>>>>>>>>>> fort-varaio.c -o fort-varaio.o >/dev/null 2>&1
> >>>>>>>>>>>> depbase=`echo fort-varmio.lo | sed 
> >>>>>>>>>>>> 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
> >>>>>>>>>>>>  /bin/sh ../libtool --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I..  -I../include    -g -O2 -MT fort-varmio.lo -MD -MP -MF 
> >>>>>>>>>>>> $depbase.Tpo -c -o fort-varmio.lo fort-varmio.c &&\
> >>>>>>>>>>>>  mv -f $depbase.Tpo $depbase.Plo
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-varmio.lo -MD -MP -MF .deps/fort-varmio.Tpo -c 
> >>>>>>>>>>>> fort-varmio.c  -fno-common -DPIC -o .libs/fort-varmio.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-varmio.lo -MD -MP -MF .deps/fort-varmio.Tpo -c 
> >>>>>>>>>>>> fort-varmio.c -o fort-varmio.o >/dev/null 2>&1
> >>>>>>>>>>>> depbase=`echo fort-varsio.lo | sed 
> >>>>>>>>>>>> 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
> >>>>>>>>>>>>  /bin/sh ../libtool --tag=CC   --mode=compile cc -DHAVE_CONFIG_H 
> >>>>>>>>>>>> -I. -I..  -I../include    -g -O2 -MT fort-varsio.lo -MD -MP -MF 
> >>>>>>>>>>>> $depbase.Tpo -c -o fort-varsio.lo fort-varsio.c &&\
> >>>>>>>>>>>>  mv -f $depbase.Tpo $depbase.Plo
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-varsio.lo -MD -MP -MF .deps/fort-varsio.Tpo -c 
> >>>>>>>>>>>> fort-varsio.c  -fno-common -DPIC -o .libs/fort-varsio.o
> >>>>>>>>>>>> libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I../include -g 
> >>>>>>>>>>>> -O2 -MT fort-varsio.lo -MD -MP -MF .deps/fort-varsio.Tpo -c 
> >>>>>>>>>>>> fort-varsio.c -o fort-varsio.o >/dev/null 2>&1
> >>>>>>>>>>>> /bin/sh ../libtool --tag=FC   --mode=link g95  -g -O2  
> >>>>>>>>>>>> -version-number 5:1:0   -o libnetcdff.la -rpath /usr/local/lib 
> >>>>>>>>>>>> fort-attio.lo fort-control.lo fort-dim.lo fort-genatt.lo 
> >>>>>>>>>>>> fort-geninq.lo fort-genvar.lo fort-lib.lo fort-misc.lo 
> >>>>>>>>>>>> fort-v2compat.lo fort-vario.lo fort-var1io.lo fort-varaio.lo 
> >>>>>>>>>>>> fort-varmio.lo fort-varsio.lo  ../f90/libnetcdff90.la -lz
> >>>>>>>>>>>> libtool: link: g95 -dynamiclib -Wl,-undefined -Wl,dynamic_lookup 
> >>>>>>>>>>>> -o .libs/libnetcdff.5.dylib  .libs/fort-attio.o 
> >>>>>>>>>>>> .libs/fort-control.o .libs/fort-dim.o .libs/fort-genatt.o 
> >>>>>>>>>>>> .libs/fort-geninq.o .libs/fort-genvar.o .libs/fort-lib.o 
> >>>>>>>>>>>> .libs/fort-misc.o .libs/fort-v2compat.o .libs/fort-vario.o 
> >>>>>>>>>>>> .libs/fort-var1io.o .libs/fort-varaio.o .libs/fort-varmio.o 
> >>>>>>>>>>>> .libs/fort-varsio.o   
> >>>>>>>>>>>> -Wl,-force_load,../f90/.libs/libnetcdff90.a  -lcurl -lz  -O2   
> >>>>>>>>>>>> -install_name  /usr/local/lib/libnetcdff.5.dylib 
> >>>>>>>>>>>> -compatibility_version 7 -current_version 7.0 -Wl,-single_module
> >>>>>>>>>>>> /usr/bin/libtool: unknown option character `f' in: -force_load
> >>>>>>>>>>>> Usage: /usr/bin/libtool -static [-] file [...] [-filelist 
> >>>>>>>>>>>> listfile[,dirname]] [-arch_only arch] [-sacLT]
> >>>>>>>>>>>> Usage: /usr/bin/libtool -dynamic [-] file [...] [-filelist 
> >>>>>>>>>>>> listfile[,dirname]] [-arch_only arch] [-o output] [-install_name 
> >>>>>>>>>>>> name] [-compatibility_version #] [-current_version #] [-seg1addr 
> >>>>>>>>>>>> 0x#] [-segs_read_only_addr 0x#] [-segs_read_write_addr 0x#] 
> >>>>>>>>>>>> [-seg_addr_table <filename>] [-seg_addr_table_filename 
> >>>>>>>>>>>> <file_system_path>] [-all_load] [-noall_load]
> >>>>>>>>>>>> make[3]: *** [libnetcdff.la] Error 1
> >>>>>>>>>>>> make[2]: *** [all] Error 2
> >>>>>>>>>>>> make[1]: *** [all-recursive] Error 1
> >>>>>>>>>>>> make: *** [all] Error 2
> >>>>>>>>>>>
> >>>>>>>>>>>
> >>>>>>>>>>>
> >>>>>>>>>>> Thanks for any help you can provide in moving me forward-- I need 
> >>>>>>>>>>> to get the main netcdf library installed, for other software that 
> >>>>>>>>>>> requires it, asap!
> >>>>>>>>>>>
> >>>>>>>>>>> Sonia Lasher-Trapp
> >>>>>>>>>>>
> >>>>>>>>>>>
> >>>>>>>>>>> --------------------------------------------
> >>>>>>>>>>> Sonia Lasher-Trapp
> >>>>>>>>>>> Associate Professor
> >>>>>>>>>>> Dept. of Earth & Atmos. Sciences
> >>>>>>>>>>> Purdue University
> >>>>>>>>>>> 550 Stadium Mall Drive
> >>>>>>>>>>> West Lafayette, IN 47907
> >>>>>>>>>>> ph:  765-496-2866
> >>>>>>>>>>> fax:  765-496-1210
> >>>>>>>>>>> address@hidden
> >>>>>>>>>>> -----------------------------------------------
> >>>>>>>>>>> "A professor is someone who talks in someone else's sleep."
> >>>>>>>>>>>
> >>>>>>>>>>>
> >>>>>>>>>>>
> >>>>>>>>>>>
> >>>>>>>>>>>
> >>>>>>>>>>>
> >>>>>>>>>>>
> >>>>>>>>>>>
> >>>>>>>>>>>
> >>>>>>>>>>>
> >>>>>>>>>>>
> >>>>>>>>>>
> >>>>>>>>>>
> >>>>>>>>>> Ticket Details
> >>>>>>>>>> ===================
> >>>>>>>>>> Ticket ID: FTQ-916604
> >>>>>>>>>> Department: Support netCDF
> >>>>>>>>>> Priority: Normal
> >>>>>>>>>> Status: Open
> >>>>>>>>>>
> >>>>>>>>>
> >>>>>>>>>
> >>>>>>>>>
> >>>>>>>>
> >>>>>>>>
> >>>>>>>> Ticket Details
> >>>>>>>> ===================
> >>>>>>>> Ticket ID: FTQ-916604
> >>>>>>>> Department: Support netCDF
> >>>>>>>> Priority: Normal
> >>>>>>>> Status: Open
> >>>>>>>>
> >>>>>>>
> >>>>>>>
> >>>>>>>
> >>>>>>
> >>>>>>
> >>>>>> Ticket Details
> >>>>>> ===================
> >>>>>> Ticket ID: FTQ-916604
> >>>>>> Department: Support netCDF
> >>>>>> Priority: Normal
> >>>>>> Status: Open
> >>>>>>
> >>>>>
> >>>>>
> >>>>>
> >>>>
> >>>>
> >>>> Ticket Details
> >>>> ===================
> >>>> Ticket ID: FTQ-916604
> >>>> Department: Support netCDF
> >>>> Priority: Normal
> >>>> Status: Open
> >>>>
> >>>
> >>>
> >>>
> >>
> >
> >
> > Ticket Details
> > ===================
> > Ticket ID: FTQ-916604
> > Department: Support netCDF
> > Priority: Normal
> > Status: Open
> >
> 
> 
> 


Ticket Details
===================
Ticket ID: FTQ-916604
Department: Support netCDF
Priority: Normal
Status: Open


NOTE: All email exchanges with Unidata User Support are recorded in the Unidata inquiry tracking system and then made publicly available through the web. If you do not want to have your interactions made available in this way, you must let us know in each email you send to us.