﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
23	Upper or lower case modfile name solution	frae	marq	"The current way to determine whether generated mod files have upper or lower case is not working for all compilers, e.g. the efc fails. I have implemented a quick and dirty solution directly into the configure files, thus I can start the testing. They are in revision 665, and allow to pass variables MOD_NAMES_UPCASE or  MOD_NAMES_LOWCASE to the configure script. configure just does a test if one of the 2 is set and overwrites anything coming from the previous test. The solution might be overwritten with an update to configure but at least I can do some more testing ;-)

The solution looks like this:


{{{
# overwrite mod name convention, quick and dirty
# and should really be in configure.ac. Does the
# job for efc compiler.
if test -n ""$MOD_NAMES_UPCASE""; then
  echo 'Found user set upper case module file.'
  CM_FC_UC_MODNAMES=yes
else
  if test -n ""$MOD_NAMES_LOWCASE""; then
     echo 'Found user set lower case module file.'
     CM_FC_UC_MODNAMES=no
  fi
fi
}}}


"	defect	closed	major		ROPP (all)	0.8	fixed		dave.offiler@… carlo.buontempo@… axel.vonengeln@…
